home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / tpop3 / pop3mail.dpr < prev    next >
Text File  |  1996-09-15  |  256b  |  15 lines

  1. program Pop3mail;
  2.  
  3. uses
  4.   Forms,
  5.   Pop3main in 'POP3MAIN.PAS' {POP3Form},
  6.   Pop3su in 'POP3SU.PAS' {SetupDlg},
  7.   Msgdcd in 'MSGDCD.PAS' {MsgProcessor};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TPOP3Form, POP3Form);
  13.   Application.Run;
  14. end.
  15.